home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / dalla rivista / host contacted / imengv3.41p2.lha / ImEngV3.41p2 / Extra / DOpus4 / Install next >
Text File  |  1997-01-09  |  748b  |  37 lines

  1. ; Install DOpus4 support scripts.
  2. ; © 1996 Simon Edwards
  3. ; This script installs some support scripts for DOpus4
  4.  
  5. (transcript "Installing...")
  6.  
  7. (message  (cat    "\nThis installs some support scripts for "
  8.             "using Directory Opus 4.x and IE 3.x together.\n"
  9.             "The support files will be installed in the "
  10.             "Rexx: directory."
  11.             ))
  12.  
  13. (working "Installing DOpus4 scripts...")
  14.  
  15. (copyfiles
  16.     (prompt "")
  17.     (help @copyfiles-help)
  18.     (files)
  19.     (pattern "#?")
  20.     (source "tclip")
  21.     (dest "T:")
  22. )
  23.  
  24. (copyfiles
  25.     (prompt "")
  26.     (help @copyfiles-help)
  27.     (files)
  28.     (pattern "#?")
  29.     (source "rexx")
  30.     (dest "Rexx:")
  31. )
  32.  
  33. (exit (cat
  34.     "Support scripts for DOpus4 have been installed in your "
  35.     "Rexx: directory.  See the ReadMe file in "
  36.     "this directory for more information."))
  37.